home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / include / objcP.h < prev   
Encoding:
C/C++ Source or Header  |  1992-04-21  |  1.6 KB  |  54 lines

  1. /* -*-c-*- */
  2.  
  3. /* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* As a special exception, if you link this library with files
  22.    compiled with GCC to produce an executable, this does not cause
  23.    the resulting executable to be covered by the GNU General Public License.
  24.    This exception does not however invalidate any other reasons why
  25.    the executable file might be covered by the GNU General Public License.  */
  26.  
  27. /* 
  28.   $Header: /usr/user/dennis_glatting/ObjC/c-runtime/include/RCS/objcP.h,v 1.1 1992/04/13 11:40:53 dennisg Exp dennisg $
  29.   $Author: dennisg $
  30.   $Date: 1992/04/13 11:40:53 $
  31.   $Log: objcP.h,v $
  32.  * Revision 1.1  1992/04/13  11:40:53  dennisg
  33.  * Initial revision
  34.  *
  35.  */
  36.  
  37.  
  38. #ifndef _objcp_INCLUDE_GNU
  39. #define _objcp_INCLUDE_GNU
  40.  
  41.  
  42. #include    <hash.h>
  43. #include  <objc.h>
  44.  
  45.  
  46.     /* Hash table used to hold module pointers. */
  47.     extern    Cache_t    moduleHash;
  48.     
  49.     /* Hash table used to hold classes. */
  50.     extern    Cache_t    classHash;
  51.  
  52. #endif
  53.  
  54.